home *** CD-ROM | disk | FTP | other *** search
/ Softdisk for Windows 42 / Softdisk for Windows 42.iso / QUARRY / QUARRY.EXE / QUARRY.dxr / 00026_CHANGEBLUEROLL.ls < prev    next >
Encoding:
Text File  |  1998-01-01  |  425 b   |  21 lines

  1. on CHANGEBLUEROLL
  2.   global BLUEROLL
  3.   set BLUEROLL to BLUEROLL + 1
  4.   if BLUEROLL >= 5 then
  5.     set BLUEROLL to 1
  6.   end if
  7.   if BLUEROLL = 1 then
  8.     set the castNum of sprite 10 to 10
  9.   end if
  10.   if BLUEROLL = 2 then
  11.     set the castNum of sprite 10 to 11
  12.   end if
  13.   if BLUEROLL = 3 then
  14.     set the castNum of sprite 10 to 12
  15.   end if
  16.   if BLUEROLL = 4 then
  17.     set the castNum of sprite 10 to 9
  18.   end if
  19.   updateStage()
  20. end
  21.